Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update all non-major dependencies #197

Merged
merged 1 commit into from
Nov 3, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 3, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@blitzjs/auth (source) 2.0.0-beta.34 -> 2.0.0-beta.35 age adoption passing confidence
@blitzjs/next (source) 2.0.0-beta.34 -> 2.0.0-beta.35 age adoption passing confidence
@types/node (source) 20.8.9 -> 20.8.10 age adoption passing confidence
@types/react (source) 18.2.33 -> 18.2.34 age adoption passing confidence
blitz (source) 2.0.0-beta.34 -> 2.0.0-beta.35 age adoption passing confidence
build-ts 11.0.9 -> 11.0.11 age adoption passing confidence

Release Notes

blitz-js/blitz (@​blitzjs/auth)

v2.0.0-beta.35

Compare Source

🚀 Features

  • 3bcbad1: - Introduce Blitz RPC's logging system to the invoke function which is the recommended way to call resolvers in nextjs app directory's react server components.

    • This refactor also removes the re-introduced dependency between blitz-auth and blitz-rpc, allowing independent usage of blitz-rpc

You can now configure the usage of invoke in the app directory with custom error handling logic and controlling the verbosity of the logger in the following way:

// blitz-server.ts
import { notFound } from "next/navigation"
...
RpcServerPlugin({
  logging: {
    allowList: [] // if allowList is defined then only those routes will be logged
    blockList: [] // If blockList is defined then all routes except those will be logged
    disablelevel: "info|debug" // Represents the flag to enable/disable logging for a particular level
    verbose: true, // enable/disable logging If verbose is true then Blitz RPC will log the input and output of each resolver
  },
  onInvokeError(error) {
    if(error instanceof NotFoundError) {
      notFound()
    }
  },
}),

⚠️ Breaking Change

  • b97366c: Remove unintended dependency on next-auth by removing it from the core build of @​blitzjs/auth

    Update your import in next.config.js in the following way

    -const { withNextAuthAdapter } = require("@​blitzjs/auth")
    +const { withNextAuthAdapter } = require("@​blitzjs/auth/next-auth")

🐞 Patches

  • cee2dec: Fix bug that did not allow Page.authenicate = {role: "" } to correctly work

  • aec1bb0: blitz-next: Fix next/head used in app directory warning

  • c89cb94: Upgrade next, prisma and zod to latest versions in a newly created app

WillBooster/build-ts (build-ts)

v11.0.11

Compare Source

Bug Fixes
  • downgrade eslint-plugin-unicorn (430fee3)

v11.0.10

Compare Source

Bug Fixes

Configuration

📅 Schedule: Branch creation - "before 6am on Saturday" in timezone Asia/Tokyo, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot enabled auto-merge (squash) November 3, 2023 16:56
@renovate renovate bot merged commit 708394d into main Nov 3, 2023
7 checks passed
@renovate renovate bot deleted the renovate/all-minor-patch branch November 3, 2023 17:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants